home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / super30a.zip / SMUTIL.ZIP / SAMPLE1.C < prev    next >
Text File  |  1991-12-17  |  375b  |  20 lines

  1. /*************************************************************************
  2. *                                         *
  3. * SAMPLE1.C                                 *
  4. *                                         *
  5. *************************************************************************/
  6.  
  7. #include <stdio.h>
  8.  
  9.  
  10. int second_function()
  11. {
  12.     printf("\n\nHello ");
  13.     return(1);
  14. }
  15. int third_function()
  16. {
  17.     printf("World...\n");
  18.     return(1);
  19. }
  20.